From: Jim Blandy Date: Tue, 4 May 1993 00:28:07 +0000 (+0000) Subject: * emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96416 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=d620fb0c44f0498c74cd7590d976cb27ded740d0;p=emacs.git * emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and ':' elsewhere, just have it default to ':' if not #defined, and #define it to be ',' in s/vms.h; OS/2 will need it to be ';'. * s/vms.h (SEPCHAR): #define this to be ','. * s/template.h (SEPCHAR): Mention this. * s/vms.h (xfree): #define this to emacs_xfree, to avoid case conflict with XFree; on VMS, external symbols are case-insensitive. --- diff --git a/src/s/vms.h b/src/s/vms.h index 8278cfbcfac..e2a9af5d9fe 100644 --- a/src/s/vms.h +++ b/src/s/vms.h @@ -250,3 +250,9 @@ globalref char sdata[]; #define NULL_DEVICE "NLA0:" #define EXEC_SUFFIXES ".exe:.com" + +/* Case conflict with Xlib XFree () */ +#define xfree emacs_xfree + +/* What separator do we use in paths? */ +#define SEPCHAR ','